DataSource for Entity Framework in WPF
C1.LiveLinq.AdoNet Namespace / IndexedDataTable<TRow> Class / Item Property
The zero-based ordinal position of the row to return.

In This Topic
    Item Property (IndexedDataTable<TRow>)
    In This Topic
    Gets the row at the specified ordinal position.
    Syntax
    'Declaration
     
    Public ReadOnly Default Property Item( _
       ByVal ordinal As Integer _
    ) As TRow
    public TRow this[ 
       int ordinal
    ]; {get;}

    Parameters

    ordinal
    The zero-based ordinal position of the row to return.

    Property Value

    The specified row.
    Remarks
    This property returns the same row as Rows[ordinal] of the System.Data.DataTable represented by this IndexedDataTable<TRow>.
    See Also